home *** CD-ROM | disk | FTP | other *** search
/ ASP Advantage 1994 2nd Q2 / The Association of Shareware Professionals - The Official ASP Advantage (2nd Quarter)(1994).bin / files / utilstem / boot202 / samples / readme.rpt < prev   
Encoding:
Text File  |  1994-01-06  |  1.8 KB  |  54 lines

  1.  
  2. Notes for CONFIG.RPT and AUTOEXEC.RPT
  3.  
  4. This setup displays two menus (see the comments at the bottom of CONFIG.RPT)
  5. with the second menu customized depending on which item was chosen on the
  6. first menu:
  7.  
  8.  
  9.     MANAGER MENU                CONFIG MENU
  10.  
  11.     QEMM386                     Normal Operation
  12.                                 Windows Enhanced
  13.                                 AS/400
  14.                                 Experimental Config
  15.                                 Backups
  16.  
  17.     386MAX                      Normal Operation
  18.                                 Windows Enhanced
  19.                                 AS/400
  20.                                 Experimental Config
  21.                                 Backups
  22.  
  23.     DOS (HIMEM and EMM386)      Normal Operation
  24.                                 Windows Enhanced
  25.                                 Experimental Config
  26.  
  27.     None                        Normal Operation
  28.                                 Vanilla
  29.                                 4DOS Vanilla
  30.                                 Experimental Config
  31.  
  32.  
  33. The second level menus are not submenus -- submenus (such as in DOS6) would
  34. require repeating everything for each menu. Rather it's just a single
  35. second menu in a menu sequence, with conditional menu items and conditional
  36. processing depending on the selection in the first menu.
  37.  
  38.  
  39. This CONFIG.SYS is quite complex, because it's designed to run under MS-DOS
  40. and DR DOS which have slightly different syntax and requirements. Ray uses
  41. his own dual-boot feature to switch between these two operating systems, and
  42. having a single CONFIG.SYS for both avoids having to maintain two versions
  43. in parallel.
  44.  
  45. Differences between MS-DOS and DR DOS are handled as follows:
  46.  
  47.    DEVICE=BOOT.IF DRDOS
  48.       rem commands for drdos
  49.    DEVICE=BOOT.ELSE
  50.       rem commands for ms/pc-dos
  51.    DEVICE=BOOT.ENDIF
  52.  
  53.  
  54.